{% extends "base.html" %} {% load static %} {% block other_css %} {% endblock %} {% block sideDashBoard %} {% include "sideDashboard.html"%} {% endblock %} {% block content %} {%for user in users%}

Basic Information


{{user.Username}}

{{user.name}}

{{user.nickName}}

{{user.Email}}

{{user.phoneNumber}}

{{user.address}}

Education Experience


{%for education in educations%} {%if education.Username == user.Username%}
{%csrf_token%}

{{education.title}} In {{education.major}}


{{education.school}}

{{education.duration}}


{%endif%} {%endfor%}

Work Experience


{%for work in works%} {%if work.Username == user.Username%}
{%csrf_token%}

{{work.job}}


{{work.years}}

{{work.company}}

{{work.comment}}


{%endif%} {%endfor%}

Skills

Add Skill
{%for skill in skills%}
{% csrf_token %}

{{skill|safe}}

{%endfor%}

Update Profile


{%csrf_token%}

Active Applications


{%for application in applications%}
Application for {{application.job.title}} at {{application.job.company.name}}

{{application.job.jobtype}}

{{application.job.description}}

{{application.job.company.name}}

{{application.status}}


{%endfor%}
{%endfor%} {% endblock %} {% block other_js %} {% endblock %}